home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2001 June / june_2001.iso / Html / CuteHtml / setup.exe / +PICTURE THAT TIMES OUT.JS < prev    next >
Encoding:
Text File  |  1999-09-03  |  857 b   |  26 lines

  1.  
  2.  
  3. <script language="JavaScript">
  4. <!-- This Script And Over 400 Others Found At --!>
  5. <!--    Java City 2000 http://www.jc2k.com    --!>
  6. <!-- This script will display a picture that will dissapear from the page after a certain date
  7. is reached. -->
  8.  
  9. <!-- Begin
  10. function checknew(date) {
  11. var pic = "http://www.your-site.com/where-you-put-it/new.gif";
  12. expdate = new Date(date);
  13. curdate = new Date();
  14. if (expdate.getTime() > curdate.getTime())
  15. document.write("<img src=" + pic + ">");
  16. }
  17. // End -->
  18. </script>
  19.  
  20. <!-- Examples of how to call the script -->
  21.  
  22. <script> checknew("6/1/98") </script>Shown as "New" until 6/1/98<br>
  23. <script> checknew("12/31/98") </script>Shown as "New" until 12/31/98<br>
  24. <script> checknew("6/1/99") </script>Shown as "New" until 6/1/99<br>
  25. <script> checknew("12/31/99") </script>Shown as "New" until 12/31/99<br>
  26.